(0) Obligation:

Runtime Complexity TRS:
The TRS R consists of the following rules:

div(x, s(y)) → d(x, s(y), 0)
d(x, s(y), z) → cond(ge(x, z), x, y, z)
cond(true, x, y, z) → s(d(x, s(y), plus(s(y), z)))
cond(false, x, y, z) → 0
ge(u, 0) → true
ge(0, s(v)) → false
ge(s(u), s(v)) → ge(u, v)
plus(n, 0) → n
plus(n, s(m)) → s(plus(n, m))

Rewrite Strategy: FULL

(1) DecreasingLoopProof (EQUIVALENT transformation)

The following loop(s) give(s) rise to the lower bound Ω(n1):
The rewrite sequence
ge(s(u), s(v)) →+ ge(u, v)
gives rise to a decreasing loop by considering the right hand sides subterm at position [].
The pumping substitution is [u / s(u), v / s(v)].
The result substitution is [ ].

(2) BOUNDS(n^1, INF)